diff --git a/ghostos/app/.example.env b/ghostos/app/.example.env index 1745b847..8f59e3b4 100755 --- a/ghostos/app/.example.env +++ b/ghostos/app/.example.env @@ -4,14 +4,14 @@ # or export the values to environment. # [openai](https://openai.com/) api key -OPENAI_API_KEY +OPENAI_API_KEY="your openai key" # optional openai proxy -OPENAI_PROXY +OPENAI_PROXY="your openai proxy" # [moonshot](https://moonshot.cn/) api key MOONSHOT_API_KEY="your moonshot model api key" # [anthropic](https://www.anthropic.com/) api key ANTHROPIC_API_KEY="your anthropic api key" # optional anthropic proxy -ANTHROPIC_PROXY +#ANTHROPIC_PROXY # [deepseek](https://deepseek.com) api key -DEEPSEEK_API_KEY \ No newline at end of file +DEEPSEEK_API_KEY="your deepseek api key" \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 9b1ec657..a88715eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,10 +7,10 @@ license = "MIT" readme = "README.md" [tool.poetry.urls] -homepage = "https://github.com/ghost-in-moss/GhostOS" -repository = "https://github.com/ghost-in-moss/GhostOS" -documentation = "https://ghost-in-moss.github.io/GhostOS/#/en/" -issues = "https://github.com/ghost-in-moss/GhostOS/issues" +Homepage = "https://github.com/ghost-in-moss/GhostOS" +Repository = "https://github.com/ghost-in-moss/GhostOS" +Documentation = "https://ghost-in-moss.github.io/GhostOS/#/en/" +Issues = "https://github.com/ghost-in-moss/GhostOS/issues" [tool.poetry.dependencies] python = ">=3.10,<3.14"