ai-gradio のインストール方法
ai-gradio で Novita AI の LLMs を使用する方法
Step 1: 環境変数を設定します。
- NOVITA_API_KEY をあなたの Novita API key に設定します。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
ai-gradio と Novita AI を活用して、強力な大規模言語モデルによるインタラクティブな AI デモを簡単に構築する方法を紹介します。
# Install core package
pip install ai-gradio
# Install with specific provider support
pip install 'ai-gradio[openai]' # OpenAI support
pip install 'ai-gradio[gemini]' # Google Gemini support
pip install 'ai-gradio[anthropic]' # Anthropic Claude support
pip install 'ai-gradio[groq]' # Groq support
# Install all providers
pip install 'ai-gradio[all]'
export NOVITA_API_KEY=<your api key>
import gradio as gr
import ai_gradio
gr.load(
name='novita:deepseek/deepseek-r1',
src=ai_gradio.registry,
).launch()