https://github.com/eliranwong/agentmakestudio
AgentMake AI Studio - Web UI built for working with AgentMake AI
https://github.com/eliranwong/agentmakestudio
Last synced: 5 months ago
JSON representation
AgentMake AI Studio - Web UI built for working with AgentMake AI
- Host: GitHub
- URL: https://github.com/eliranwong/agentmakestudio
- Owner: eliranwong
- License: mit
- Created: 2025-03-28T23:23:38.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-04-08T08:23:23.000Z (6 months ago)
- Last Synced: 2025-05-05T22:53:55.439Z (5 months ago)
- Language: Python
- Size: 69.3 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# agentmakestudio
AgentMake AI Studio - Web UI built for working with [AgentMake AI](https://github.com/eliranwong/agentmake)

# Install
> pip install --upgrade agentmakestudio
To support Vertex AI:
> pip install --upgrade "agentmakestudio[genai]"
# Export Path
To export Path for running AgentMake and AgentMake Studio, assuming you install `agentmakestudio` in a virtual environment `ai`, e.g.:
```
cd
python3 -m venv ai
source ai/bin/activate
pip install --upgrade "agentmake[studio,genai]"
echo export "PATH=$PATH:$(pwd)/ai/bin" >> ~/.bashrc
```# Configurations
To configure AgentMake AI backends, like API keys, run:
> ai -ec
# Run
> agentmakestudio
Open `http://localhost:32123` in a web browser.
# Run with Custom Port
For example, use port 33333
> agentmakestudio --port 33333
Open `http://localhost:33333` in a web browser.
# Auto Run
Below is an example bash script that runs `agentmakestudio` automatically:
https://github.com/eliranwong/agentmakestudio/blob/main/auto_run.sh
You may place the content script in, e.g. `~/.bashrc`
# Usage
Enter your prompt and get a response.
Use the menu items to specify [agentic components](https://github.com/eliranwong/agentmake#introducing-agentic-components) optionally.
The following shortcuts are supported for specifying agent, tool, system, instruction in a single turn. These shortcuts work only if there is no agent being selected in the menu and you declar a shortcut at the beginning of your prompt:
* agent - `@@` followed by an agent name, e.g. `@@reasoning`
* tool - `@` followed by a tool name, e.g. `@magic`
* system - `++` followed by a system name, e.g. `++auto`
* instruction - `+` followed by an instruction name, e.g. `+think`
# Read more
https://github.com/eliranwong/agentmake