Skip to content

WebUI

Web Interface Integration

The web interface provides a graphical way to manage and interact with agents.

Starting the Interface

# Basic launch
llmling-agent launch

# Custom server settings
llmling-agent launch --host 0.0.0.0 --port 8080 --share

Features

  1. Configuration Management
  2. Upload agent configurations
  3. Select active configuration
  4. Choose agents to interact with

  5. Agent Interaction

  6. Real-time chat with streaming responses
  7. Visual tool state management
  8. Model overrides
  9. Conversation history

  10. Debug Features

  11. Token usage monitoring
  12. Debug log display
  13. Tool execution tracking

Example Usage

  1. Launch the interface:

    llmling-agent launch
    

  2. Upload or select your agent configuration:

    # agents.yml
    agents:
      assistant:
        model: openai:gpt-4o-mini
        environment: env_basic.yml
        system_prompts:
          - "You are a helpful assistant."
    

  3. Use the web interface to:

  4. Chat with the agent
  5. Toggle available tools
  6. Monitor token usage
  7. View conversation history

Key features visible in the UI: - Real-time response streaming - Tool availability indicators - Token usage statistics - Debug log viewer - Chat history display ```