Files
owl/community_usecase/stock-analysis/.env.template
ptonlix cc771cdf15 eat: Add stock analysis use cases, including SEC tools, proxies, and sample reports
This submission introduces stock analysis use cases, which include the following main components:
1. Added SEC toolset (` sec_tools. py `) for retrieving and analyzing 10-K and 10-Q files from the SEC database.
2. Add an SEC agent (` sec_agent. py `) to generate a comprehensive analysis report of the company's SEC documents.
3. Provide sample reports (Alibaba_investment.analysis.md and Google_investment.analysis.md) to demonstrate complete stock investment analysis.
4. Add environment variable templates (`. env. template `) and `. gitignore ` files to ensure the security of project configuration.
5. Add the 'run. py' script to run the stock analysis agent and generate reports.
These changes provide a complete solution for stock investment analysis, supporting the entire process from data acquisition to report generation.

feat:  Add stock analysis agent and related documents and example files

This submission includes the implementation code of the stock analysis agent, Chinese and English README documents, example files (including Apple's investment analysis report and chat records), and required dependencies for the project. These changes provide a complete stock analysis tool for the project, helping users generate detailed stock analysis reports.

chore:  Delete useless. gitkeep files

Clean up. gitkeep files that are no longer needed in the project to keep the codebase clean
2025-03-30 23:06:51 +08:00

17 lines
605 B
Plaintext

#===========================================
# MODEL & API
# (See https://docs.camel-ai.org/key_modules/models.html#)
#===========================================
# DeepSeek API (https://platform.deepseek.com/api_keys)
DEEPSEEK_API_KEY='Your_Key'
DEEPSEEK_API_BASE_URL="https://api.deepseek.com/v1"
# ZHIPU API (https://bigmodel.cn/usercenter/proj-mgmt/apikeys)
ZHIPUAI_API_KEY='Your_Key'
ZHIPUAI_API_BASE_URL="https://open.bigmodel.cn/api/paas/v4/"
# SEC-API (https://sec-api.io/profile)
SEC_API_API_KEY='Your_Key'
# AgentOps API (https://app.agentops.ai/settings/billing)
AGENTOPS_API_KEY= 'Your_Key'