- Add core task execution framework - Add LLM integration with DeepSeek - Add text analysis task implementation - Add configuration management - Add tests and documentation
11 lines
271 B
Python
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()
|