ai devices
1.0.0
该项目是使用各种AI模型和服务来提供对用户查询的智能响应的AI驱动语音助手。它支持语音输入,转录,文本到语音,图像处理以及有条件渲染的UI组件的函数调用。这是受AI设备(如人道AI销和Rabbit R1)的最新趋势的启发。
git clone https://github.com/developersdigest/ai-devices.gitnpm install
# or
bun install要使用此AI驱动的语音助手,您需要为选定的AI模型和服务提供必要的API键。
为每种服务替换您的实际API键,替换'api_key_goes_here'。
npm run dev
# or
bun dev通过http://localhost:3000或通过提供的URL。
修改app/config.tsx以调整AI驱动语音助手的设置和配置。这是可用选项的概述:
export const config = {
// Inference settings
inferenceModelProvider : 'groq' , // 'groq' or 'openai'
inferenceModel : 'llama3-8b-8192' , // Groq: 'llama3-70b-8192' or 'llama3-8b-8192'.. OpenAI: 'gpt-4-turbo etc
// BELOW OPTIONAL are some options for the app to use
// Whisper settings
whisperModelProvider : 'openai' , // 'groq' or 'openai'
whisperModel : 'whisper-1' , // Groq: 'whisper-large-v3' OpenAI: 'whisper-1'
// TTS settings
ttsModelProvider : 'openai' , // only openai supported for now...
ttsModel : 'tts-1' , // only openai supported for now...s
ttsvoice : 'alloy' , // only openai supported for now... [alloy, echo, fable, onyx, nova, and shimmer]
// OPTIONAL:Vision settings
visionModelProvider : 'google' , // 'openai' or 'fal.ai' or 'google'
visionModel : 'gemini-1.5-flash-latest' , // OpenAI: 'gpt-4o' or Fal.ai: 'llava-next' or Google: 'gemini-1.5-flash-latest'
// Function calling + conditionally rendered UI
functionCallingModelProvider : 'openai' , // 'openai' current only
functionCallingModel : 'gpt-3.5-turbo' , // OpenAI: 'gpt-3-5-turbo'
// UI settings
enableResponseTimes : false , // Display response times for each message
enableSettingsUIToggle : true , // Display the settings UI toggle
enableTextToSpeechUIToggle : true , // Display the text to speech UI toggle
enableInternetResultsUIToggle : true , // Display the internet results UI toggle
enableUsePhotUIToggle : true , // Display the use photo UI toggle
enabledRabbitMode : true , // Enable the rabbit mode UI toggle
enabledLudicrousMode : true , // Enable the ludicrous mode UI toggle
useAttributionComponent : true , // Use the attribution component to display the attribution of the AI models/services used
// Rate limiting settings
useRateLimiting : false , // Use Upstash rate limiting to limit the number of requests per user
// Tracing with Langchain
useLangSmith : true , // Use LangSmith by Langchain to trace the execution of the functions in the config.tsx set to true to use.
} ; 欢迎捐款!如果您发现任何问题或有改进的建议,请打开问题或提交拉动请求。
我是开发人员Digest背后的开发人员。如果您发现我的工作有帮助或享受我的工作,请考虑支持我。您可以做几种方法: