podbc_sparql_func
Query and process SPARQL-based data directly through SQLAlchemy connectivity, enabling integration with any DBMS accessible via SQLAlchemy.
Instructions
Call ???.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | ||
prompt | Yes | ||
url | No |
Input Schema (JSON Schema)
{
"properties": {
"api_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Api Key"
},
"prompt": {
"title": "Prompt",
"type": "string"
},
"url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Url"
}
},
"required": [
"prompt"
],
"title": "podbc_sparql_funcArguments",
"type": "object"
}