AthenaAgent
1.0.0
AthenaAgent是CosmosShadow對GeneralAgent的 TypeScript 移植,旨在建立一個專為動態適應而設計的直覺框架。與其他公司不同的是,GeneralAgent 專門為用戶配備智慧代理,這些代理具有以下特點:
它不僅僅是一個工具,更是一個隨著用戶需求而成長的伴侶,使人工智慧的高級功能可供每個人使用和操作。
有關代理框架的更多詳細信息,請參閱 GeneralAgent/README。
functions
和json_mode
支援更穩定、一致的響應該項目目前正在積極開發中,每日更新。
yarn install
LLM 推理需要以下環境變數:
### reference: https://learn.microsoft.com/en-us/azure/ai-services/openai/reference
# GPT4 (for LLM ChatCompletion inference
GPT4_URL=https://{resource-name}.openai.azure.com/openai/deployments/{deployment-name}/chat/completions?api-version={api-version}
GPT4_APIKEY={api-key}
# GPT4-Turbo (for LLM ChatCompletion inference. It's not stable due to heavy traffic, not recommended. encountering too many empty responses)
GPT4_T_URL=https://{resource-name}.openai.azure.com/openai/deployments/{deployment-name}/chat/completions?api-version={api-version}
GPT4_T_APIKEY={api-key}
# GPT3.5-Turbo (for LLM ChatCompletion inference)
GPT3_5_URL=https://{resource-name}.openai.azure.com/openai/deployments/{deployment-name}/chat/completions?api-version={api-version}
GPT3_5_APIKEY={api-key}
# GPT3.5-Turbo-Instruct (for LLM Completion inference)
GPT3_5_I_APIKEY={api-key}
GPT3_5_I_URL=https://{resource-name}.openai.azure.com/openai/deployments/{deployment-name}/completions?api-version={api-version}