agent-task-executor/scripts/setup_config.py
zhukang dd797ab5e4 feat: initial commit of agent task executor framework
- Add core task execution framework
- Add LLM integration with DeepSeek
- Add text analysis task implementation
- Add configuration management
- Add tests and documentation
2025-01-14 20:53:09 +08:00

11 lines
271 B
Python

from config.config_loader import save_api_key
def main():
"""Set up the configuration with API key."""
api_key = "sk-652f44592f6d4d19bad104c54f5fbf4a"
save_api_key(api_key)
print("API key has been securely saved.")
if __name__ == "__main__":
main()