Skip to content

Commit 744ed93

Browse files
committed
New module for Pica OneTool
0 parents  commit 744ed93

9 files changed

+2295
-0
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Daggerverse
2+
3+
A collection of Dagger modules for Pica, published on [Daggerverse](https://daggerverse.dev/)

pica/.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/sdk/** linguist-generated

pica/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/sdk
2+
/**/node_modules/**
3+
/**/.pnpm-store/**

pica/README.md

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Pica
2+
3+
[Pica](https://www.picaos.com/) provides powerful APIs and tools to build, deploy, and scale AI agents with seamless access to over 100+ integrations
4+
5+
## Requirements
6+
7+
Set the following environment variables:
8+
9+
- `$PICA_API_KEY` containing a [Pica API key](https://app.picaos.com/)
10+
- `$OPENAI_API_KEY` containing an [OpenAI API key](https://platform.openai.com/)
11+
12+
See https://docs.picaos.com/get-started/quickstart to get started.
13+
14+
## Usage
15+
16+
```go
17+
package main
18+
19+
import (
20+
"context"
21+
"dagger/go-with-dagger/internal/dagger"
22+
"fmt"
23+
)
24+
25+
type HelloPica struct{}
26+
27+
// Return the current weather for a given location
28+
func (m *HelloPica) CurrentWeather(ctx context.Context, location string, picaApiKey *dagger.Secret, openaiApiKey *dagger.Secret) (string, error) {
29+
prompt := fmt.Sprintf("What's the weather in %s?", location)
30+
return dag.Pica(picaApiKey, openaiApiKey).OneTool(ctx, prompt)
31+
}
32+
```
33+
34+
```shell
35+
$ dagger call current-weather --location=Toronto --pica-api-key=env://PICA_API_KEY --openai-api-key=env://OPENAI_API_KEY
36+
✔ connect 0.4s
37+
✔ load module 1.9s
38+
✔ parsing command line arguments 0.0s
39+
40+
✔ helloPica: HelloPica! 0.0s
41+
✔ .currentWeather(
42+
│ │ location: "Toronto"
43+
│ │ openaiApiKey: ✔ secret(uri: "env://OPENAI_API_KEY"): Secret! 0.0s
44+
│ │ picaApiKey: ✔ secret(uri: "env://PICA_API_KEY"): Secret! 0.0s
45+
│ ): String! 11.4s
46+
47+
The current weather in Toronto is partly cloudy with a temperature of -5°C (24°F). It feels like -10°C (14°F) due to the wind. The humidity is at 53%, and the wind is coming from the northwest at 14 km/h (9 mph). Visibility is good at 14 km (8 miles), and the pressure is 1030 hPa.
48+
```

pica/dagger.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "pica",
3+
"engineVersion": "v0.16.1",
4+
"sdk": {
5+
"source": "typescript"
6+
},
7+
"source": "."
8+
}

pica/package.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"type": "module",
3+
"dependencies": {
4+
"@ai-sdk/openai": "^1.1.13",
5+
"@dagger.io/dagger": "./sdk",
6+
"@picahq/ai": "^2.0.8",
7+
"ai": "^4.1.45",
8+
"typescript": "^5.5.4"
9+
},
10+
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
11+
}

pica/src/index.ts

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
import { Secret, object, func } from "@dagger.io/dagger";
2+
import { createOpenAI } from "@ai-sdk/openai";
3+
import { generateText } from "ai";
4+
import { Pica as PicaAI } from "@picahq/ai";
5+
6+
@object()
7+
export class Pica {
8+
picaApiKey: Secret;
9+
openaiApiKey: Secret;
10+
11+
constructor(picaApiKey: Secret, openaiApiKey: Secret) {
12+
this.picaApiKey = picaApiKey;
13+
this.openaiApiKey = openaiApiKey;
14+
}
15+
16+
/**
17+
* Returns a response from the LLM as a string
18+
*/
19+
@func()
20+
async oneTool(prompt: string): Promise<string> {
21+
const plaintextPicaApiKey = await this.picaApiKey.plaintext();
22+
const plaintextOpenaiApiKey = await this.openaiApiKey.plaintext();
23+
const pica = new PicaAI(plaintextPicaApiKey);
24+
const systemPrompt = await pica.generateSystemPrompt();
25+
const openai = createOpenAI({ apiKey: plaintextOpenaiApiKey });
26+
27+
const { text } = await generateText({
28+
model: openai("gpt-4o"),
29+
system: systemPrompt,
30+
prompt: prompt,
31+
tools: { ...pica.oneTool },
32+
maxSteps: 10,
33+
});
34+
35+
return text;
36+
}
37+
}

pica/tsconfig.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES2022",
4+
"moduleResolution": "Node",
5+
"experimentalDecorators": true,
6+
"paths": {
7+
"@dagger.io/dagger": ["./sdk/src"],
8+
"@dagger.io/dagger/telemetry": ["./sdk/src/telemetry"]
9+
}
10+
}
11+
}

0 commit comments

Comments
 (0)