Skip to content

Commit

Permalink
😴
Browse files Browse the repository at this point in the history
  • Loading branch information
transitive-bullshit committed Aug 4, 2024
1 parent 2030109 commit 5fbad5f
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 5 deletions.
3 changes: 1 addition & 2 deletions bin/scratch.ts → examples/playground/bin/scratch.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
#!/usr/bin/env node
import 'dotenv/config'

import { SerperClient } from '@agentic/serper'
import restoreCursor from 'restore-cursor'

import { SerperClient } from '../src'

/**
* Scratch pad for testing.
*/
Expand Down
19 changes: 19 additions & 0 deletions examples/playground/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "agentic-examples-playground",
"type": "module",
"private": true,
"scripts": {
"test": "run-s test:*",
"test:lint": "eslint .",
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"@agentic/core": "workspace:*",
"@agentic/serper": "workspace:*",
"restore-cursor": "^5.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"
}
}
5 changes: 5 additions & 0 deletions examples/playground/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": "@agentic/tsconfig/base.json",
"include": ["bin"],
"exclude": ["node_modules", "dist"]
}
25 changes: 22 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5fbad5f

Please sign in to comment.