V0
v0v0 is an AI-powered web development assistant built by Vercel, designed to generate real, production-ready code for modern web applications.
Acciones disponibles (3)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
V0 Chat CompletionsV0_V0_CHAT_COMPLETIONSAcciónTool to generate a chat model response given a list of messages. use when you need ai-powered conversational replies via the v0 api.
V0_V0_CHAT_COMPLETIONSAcciónTool to generate a chat model response given a list of messages. use when you need ai-powered conversational replies via the v0 api.
Parámetros de entrada
modelstringObligatorioModel to use for generating the chat completion
toolsobject[]Optional list of tool definitions (functions) available to the model
streambooleanIf true, returns a stream of completion chunks. Streaming is not supported by this action wrapper.
messagesobject[]ObligatorioList of messages describing the conversation so far
tool_choicestringIdentifier or definition of the tool to call, if tools are provided
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Find ChatsV0_V0_FIND_CHATSAcciónTool to retrieve a list of chats. use when you need to list user chats with pagination and optional favorite filtering after authentication.
V0_V0_FIND_CHATSAcciónTool to retrieve a list of chats. use when you need to list user chats with pagination and optional favorite filtering after authentication.
Parámetros de entrada
limitintegerMaximum number of chats to return; must be between 0 and 60
offsetintegerNumber of chats to skip before returning results; must be non-negative
isFavoritebooleanIf true, only favorite chats are returned; omit to fetch all
Parámetros de salida
dataobject[]ObligatorioArray of chat objects
errorstringError if any occurred during the execution of the action
objectstringObligatorioConstant: 'list'
successfulbooleanObligatorioWhether or not the action execution was successful or not
Find ProjectsV0_V0_FIND_PROJECTSAcciónTool to retrieve a list of projects associated with the authenticated user. use after obtaining a valid api key.
V0_V0_FIND_PROJECTSAcciónTool to retrieve a list of projects associated with the authenticated user. use after obtaining a valid api key.
Parámetros de entrada
afterstringCursor for pagination to return items after this cursor
limitintegerMaximum number of projects to return; must be >= 1
Parámetros de salida
dataobject[]ObligatorioList of project objects returned by the API
errorstringError if any occurred during the execution of the action
objectstringObligatorioLiteral 'list' denoting the list object type
successfulbooleanObligatorioWhether or not the action execution was successful or not