Skip to content

Commit c6dbd51

Browse files
committed
Improve docs
1 parent 744ed93 commit c6dbd51

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

pica/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424

2525
type HelloPica struct{}
2626

27-
// Return the current weather for a given location
27+
// Returns the current weather for a given location
2828
func (m *HelloPica) CurrentWeather(ctx context.Context, location string, picaApiKey *dagger.Secret, openaiApiKey *dagger.Secret) (string, error) {
2929
prompt := fmt.Sprintf("What's the weather in %s?", location)
3030
return dag.Pica(picaApiKey, openaiApiKey).OneTool(ctx, prompt)

pica/src/index.ts

+20-2
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,38 @@
1+
/**
2+
* Use Pica OneTool with Dagger
3+
*
4+
* Pica provides powerful APIs and tools to build, deploy, and scale AI agents with seamless access to over 100+ integrations
5+
*/
16
import { Secret, object, func } from "@dagger.io/dagger";
27
import { createOpenAI } from "@ai-sdk/openai";
38
import { generateText } from "ai";
49
import { Pica as PicaAI } from "@picahq/ai";
510

611
@object()
712
export class Pica {
13+
@func()
814
picaApiKey: Secret;
15+
@func()
916
openaiApiKey: Secret;
1017

11-
constructor(picaApiKey: Secret, openaiApiKey: Secret) {
18+
constructor(
19+
/*
20+
* Pica API key
21+
*/
22+
picaApiKey: Secret,
23+
/*
24+
* OpenAI API key
25+
*/
26+
openaiApiKey: Secret,
27+
) {
1228
this.picaApiKey = picaApiKey;
1329
this.openaiApiKey = openaiApiKey;
1430
}
1531

1632
/**
17-
* Returns a response from the LLM as a string
33+
* Returns the response from ChatGPT using the supplied prompt and any connected integrations
34+
*
35+
* @param prompt The prompt to send to the ChatGPT
1836
*/
1937
@func()
2038
async oneTool(prompt: string): Promise<string> {

0 commit comments

Comments
 (0)