AthenaAgent
1.0.0
AthenaAgent 는 CosmosShadow 의 GeneralAgent 의 TypeScript 포트로, 동적 적응을 위해 설계된 직관적인 프레임워크를 구축하는 것을 목표로 합니다. 다른 업체와 달리 GeneralAgent는 사용자에게 다음과 같은 지능형 에이전트를 제공하는 데 특화되어 있습니다.
이는 도구 그 이상입니다. 사용자의 요구에 따라 성장하는 동반자로서 모든 사람이 AI의 고급 기능에 액세스하고 작동할 수 있도록 해줍니다.
에이전트 프레임워크에 대한 자세한 내용은 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}