-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Agents not showing in Dev Portal ( UI ) #1522
Comments
When you're viewing the dev portal, are you entering the admin password or the user token ("3Uz8TeKj4OY-qdZAWi3R5A")? If you want to see agents created by the user, you should enter the user token as the dev portal password (make sure you log out first). If you log in with the admin password, you'll only see agents created with the default UUID corresponding to the admin. Sorry this isn't clear in the docs! |
@sarahwooders Thanks for your response, Yes I am entering the Admin password, |
Hi @tiro2000 - actually right now the dev portal will only show agents created by the admin user (we haven't really optimized the dev portal UI for an "admin" experience yet). I'm adding this to the TODOs for the dev portal, thank you for bringing this up. |
This issue has been automatically closed due to 60 days of inactivity. |
Describe the bug
Agent already created using Client Code , given Id and other details like default ( that's happening even with Basic Agent ) and its showing in the backend ( sql lite, showing in the Agents table with all fields ( agent_id, user_id, name, persona , human, preset, llm config ( {"model": "gpt-4o", "model_endpoint_type": "openai", "model_endpoint": "https://api.openai.com/v1", "model_wrapper": null, "context_window": 8192} ) ,
"embedding_model": "BAAI/bge-large-en-v1.5", "embedding_dim": 1024, "embedding_chunk_size": 300} ) .
Yet in the UI dev portal its not showing some of those created agents.
Please describe your setup
git clone, then using docker build file, then started memgpt server , then I use the password created as in the client example to create Agents
memgpt
? (cmd.exe
/Powershell/Anaconda Shell/Terminal)Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
def main():
# Create an admin client
token = "3Uz8TeKj4OY-qdZAWi3R5A" # Server Token
admin = Admin(base_url="http://localhost:8283", token=token)
MemGPT Config
Please attach your
~/.memgpt/config
file or copy past it below.[defaults]
preset = memgpt_chat
persona = sam_pov
human = basic
[model]
model = gpt-4
model_endpoint = https://api.openai.com/v1
model_endpoint_type = openai
context_window = 8192
[embedding]
embedding_endpoint_type = openai
embedding_endpoint = https://api.openai.com/v1
embedding_model = text-embedding-ada-002
embedding_dim = 1536
embedding_chunk_size = 300
[archival_storage]
type = chroma
path = C:\Users\king_.memgpt\chroma
[recall_storage]
type = sqlite
path = C:\Users\king_.memgpt
[metadata_storage]
type = sqlite
path = C:\Users\king_.memgpt
[version]
memgpt_version = 0.3.15
[client]
anon_clientid = 00000000-0000-0000-0000-000000000000
If you're not using OpenAI, please provide additional information on your local LLM setup:
Local LLM details
If you are trying to run MemGPT with local LLMs, please provide the following information:
dolphin-2.1-mistral-7b.Q6_K.gguf
)The text was updated successfully, but these errors were encountered: