Files
pyopenclaw/.env.example
yunxiafei 97fb0a47ed 初始化项目:PyOpenClaw 核心框架
- 项目结构搭建
- Agent 核心类实现
- LLM 客户端(OpenAI)
- 工具系统框架
- 配置管理
- 简单示例

版本: v0.1.0
2026-03-16 21:07:31 +08:00

19 lines
353 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# OpenAI API Key
OPENAI_API_KEY=your-openai-api-key-here
# OpenAI Base URL可选用于自定义端点
# OPENAI_BASE_URL=https://api.openai.com/v1
# Anthropic API Key可选
# ANTHROPIC_API_KEY=your-anthropic-api-key-here
# Gateway 配置
GATEWAY_HOST=0.0.0.0
GATEWAY_PORT=8000
# 日志级别
LOG_LEVEL=INFO
# Debug 模式
DEBUG=false