#git #config-file #llm #story #history #gitory #git-utility

app gitory-cli

根据您的 Git 历史,为您的项目构建故事

1 个不稳定版本

0.1.0 2024年5月1日

#2890命令行工具

自定义许可

29KB
643 代码行

gitory-cli

用法

  • 在运行脚本之前,请确保设置了以下环境变量

    $ export MODEL_NAME=
    $ export API_ENDPOINT=
    $ export API_KEY=
    
  • 现在请确保您在计划使用 gitory 的项目根目录中有一个 gitory_config.toml 文件。示例配置文件已提供

    gitory_config.toml

    [app]
    max_commit_depth = 2
    output_dir = "gitory"
    
    [llm]
    provider = "google_gemini"
    
    [llm.api_config]
    model = "MODEL_NAME"
    endpoint = "API_ENDPOINT"
    key = "API_KEY"
    
    [llm.generation_config]
    temperature = 0.35
    top_p = 0.8
    top_k = 40
    

您现在已准备好使用 gitory。

$ gitory-cli generate

依赖项

~15–28MB
~497K SLoC