You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-10Lines changed: 4 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,15 +26,9 @@ SQLSpec is a work in progress. While it offers a solid foundation for modern SQL
26
26
27
27
We've talked about what SQLSpec is not, so let's look at what it can do.
28
28
29
-
### Basic Example
29
+
These are just a few of the examples that demonstrate SQLSpec's flexibility and each of the bundled adapters offer the same config and driver interfaces.
30
30
31
-
### Multiple Database Engines
32
-
33
-
### Examples, Bells and Whistles
34
-
35
-
Let's take a look at a few alternate examples that leverage DuckDB and Litestar.
36
-
37
-
#### DuckDB LLM
31
+
### DuckDB LLM
38
32
39
33
This is a quick implementation using some of the built in Secret and Extension management features of SQLSpec's DuckDB integration.
40
34
@@ -76,7 +70,7 @@ with sql.provide_session(etl_config) as session:
76
70
print(result)
77
71
```
78
72
79
-
####DuckDB Gemini Embeddings
73
+
### DuckDB Gemini Embeddings
80
74
81
75
In this example, we are again using DuckDB. However, we are going to use the built in to call the Google Gemini embeddings service directly from the database.
82
76
@@ -130,7 +124,7 @@ etl_config = sql.add_config(
130
124
)
131
125
```
132
126
133
-
####Basic Litestar Integration
127
+
### Basic Litestar Integration
134
128
135
129
In this example we are going to demonstrate how to create a basic configuration that integrates into Litestar.
Copy file name to clipboardExpand all lines: docs/PYPI_README.md
+4-10Lines changed: 4 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,15 +26,9 @@ SQLSpec is a work in progress. While it offers a solid foundation for modern SQL
26
26
27
27
We've talked about what SQLSpec is not, so let's look at what it can do.
28
28
29
-
### Basic Example
29
+
These are just a few of the examples that demonstrate SQLSpec's flexibility and each of the bundled adapters offer the same config and driver interfaces.
30
30
31
-
### Multiple Database Engines
32
-
33
-
### Examples, Bells and Whistles
34
-
35
-
Let's take a look at a few alternate examples that leverage DuckDB and Litestar.
36
-
37
-
#### DuckDB LLM
31
+
### DuckDB LLM
38
32
39
33
This is a quick implementation using some of the built in Secret and Extension management features of SQLSpec's DuckDB integration.
40
34
@@ -76,7 +70,7 @@ with sql.provide_session(etl_config) as session:
76
70
print(result)
77
71
```
78
72
79
-
####DuckDB Gemini Embeddings
73
+
### DuckDB Gemini Embeddings
80
74
81
75
In this example, we are again using DuckDB. However, we are going to use the built in to call the Google Gemini embeddings service directly from the database.
82
76
@@ -130,7 +124,7 @@ etl_config = sql.add_config(
130
124
)
131
125
```
132
126
133
-
####Basic Litestar Integration
127
+
### Basic Litestar Integration
134
128
135
129
In this example we are going to demonstrate how to create a basic configuration that integrates into Litestar.
0 commit comments