Creates a new Pinecone assistant for RAG (retrieval-augmented generation).
Value
List with http response, content (assistant details), and status_code. Content includes: - name: Assistant name - instructions: Custom instructions (if set) - metadata: Metadata dictionary - status: Assistant status - host: Data plane host URL for file and chat operations - created_at: Creation timestamp - updated_at: Last update timestamp
Examples
if (FALSE) { # \dontrun{
# Create a basic assistant
create_assistant(name = "my-assistant")
# Create with instructions and metadata
create_assistant(
name = "my-assistant",
instructions = "Use American English for spelling and grammar.",
metadata = list(team = "research", version = "1.0"),
region = "us"
)
} # }