|
9 | 9 | class AstraIndexingModel(BaseModel):
|
10 | 10 | astra_db_app_token: str = Field(
|
11 | 11 | ...,
|
12 |
| - title="AstraDB Application Token", |
| 12 | + title="Astra DB Application Token", |
13 | 13 | airbyte_secret=True,
|
14 |
| - description="AstraDB Application Token", |
| 14 | + description="The application token authorizes a user to connect to a specific Astra DB database. It is created when the user clicks the Generate Token button on the Overview tab of the Database page in the Astra UI.", |
15 | 15 | )
|
16 | 16 | astra_db_endpoint: str = Field(
|
17 | 17 | ...,
|
18 |
| - title="AstraDB Endpoint", |
19 |
| - description="AstraDB Endpoint", |
| 18 | + title="Astra DB Endpoint", |
| 19 | + description="The endpoint specifies which Astra DB database queries are sent to. It can be copied from the Database Details section of the Overview tab of the Database page in the Astra UI.", |
20 | 20 | pattern="^https:\\/\\/([a-z]|[0-9]){8}-([a-z]|[0-9]){4}-([a-z]|[0-9]){4}-([a-z]|[0-9]){4}-([a-z]|[0-9]){12}-[^\\.]*?\\.apps\\.astra\\.datastax\\.com",
|
21 | 21 | examples=["https://8292d414-dd1b-4c33-8431-e838bedc04f7-us-east1.apps.astra.datastax.com"],
|
22 | 22 | )
|
23 |
| - astra_db_keyspace: str = Field(..., title="AstraDB Keyspace", description="Astra DB Keyspace") |
24 |
| - collection: str = Field(..., title="AstraDB collection", description="AstraDB collection") |
| 23 | + astra_db_keyspace: str = Field( |
| 24 | + ..., |
| 25 | + title="Astra DB Keyspace", |
| 26 | + description="Keyspaces (or Namespaces) serve as containers for organizing data within a database. You can create a new keyspace uisng the Data Explorer tab in the Astra UI. The keyspace default_keyspace is created for you when you create a Vector Database in Astra DB.", |
| 27 | + ) |
| 28 | + collection: str = Field( |
| 29 | + ..., |
| 30 | + title="Astra DB collection", |
| 31 | + description="Collections hold data. They are analagous to tables in traditional Cassandra terminology. This tool will create the collection with the provided name automatically if it does not already exist. Alternatively, you can create one thorugh the Data Explorer tab in the Astra UI.", |
| 32 | + ) |
25 | 33 |
|
26 | 34 | class Config:
|
27 | 35 | title = "Indexing"
|
|
0 commit comments