Files
2025-09-16 09:14:04 +08:00

13 lines
819 B
Plaintext
Executable File
Raw Permalink 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.
1.写一个静态网页来调用github model 来完成应用功能
2.网页清新风格颜色随意app风格适配手机端和电脑端优先优化手机端用户体验
3.默认github的调用密钥是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
4.默认调用AI模型为 "openai/gpt-4o-mini"
5.把jscsshtml分开储存每个功能分每个模块避免单个文件过大问题
6.默认github ai调用模型地址是'https://models.github.ai/inference/chat/completions'
比如这样:
// GitHub API 配置
const GITHUB_TOKEN = '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';
const endpoint = 'https://models.github.ai/inference/chat/completions';
const model = 'deepseek/DeepSeek-V3-0324';