- Notifications
You must be signed in to change notification settings - Fork328
Python & JavaScript CLI#1201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
e4ae886
b5c2af3
dd05483
d95e1ee
b9c4eb5
f3c78e1
2500645
bbef1b8
c4c1c50
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env node | ||
const pgml = require("pgml"); | ||
pgml.cli().then(() => {}); |
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"name": "pgml-cli", | ||
"version": "0.10.0", | ||
"description": "CLI for PostgresML, the GPU-powered AI application database.", | ||
"keywords": [ | ||
"postgres", | ||
"machine learning", | ||
"vector databases", | ||
"embeddings" | ||
], | ||
"bin": { | ||
"pgml": "index.js" | ||
}, | ||
"author": { | ||
"name": "PostgresML", | ||
"email": "team@postgresml.org", | ||
"url": "https://postgresml.org" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/postgresml/postgresml" | ||
}, | ||
"license": "MIT", | ||
"dependencies": { | ||
"pgml": "0.10.0" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import asyncio | ||
from pgml import cli | ||
async def main(): | ||
await cli() | ||
asyncio.run(main()) |
Uh oh!
There was an error while loading.Please reload this page.