Skip to content

Commit 51d4223

Browse files
committed
rename default org
1 parent 33730b6 commit 51d4223

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/tiny-agents/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,14 @@ Voilà! 🔥
8888

8989
## Tiny Agents collection
9090

91-
Browse our curated collection of Tiny Agents at https://huggingface.co/datasets/huggingface/tiny-agents. Each agent is stored in its own subdirectory, following the structure outlined above. Running an agent from the Hub is as simple as using its `agent_id`. For example, to run the [`julien-c/flux-schnell-generator`](https://huggingface.co/datasets/huggingface/tiny-agents/tree/main/julien-c/flux-schnell-generator) agent:
91+
Browse our curated collection of Tiny Agents at https://huggingface.co/datasets/tiny-agents/tiny-agents. Each agent is stored in its own subdirectory, following the structure outlined above. Running an agent from the Hub is as simple as using its `agent_id`. For example, to run the [`julien-c/flux-schnell-generator`](https://huggingface.co/datasets/tiny-agents/tiny-agents/tree/main/julien-c/flux-schnell-generator) agent:
9292

9393
```bash
9494
npx @huggingface/tiny-agents run "julien-c/flux-schnell-generator"
9595
```
9696

9797
> [!NOTE]
98-
> Want to share your own agent with the community? Submit a PR to the [Tiny Agents](https://huggingface.co/datasets/huggingface/tiny-agents/discussions) repository on the Hub. Your submission must include an `agent.json` file, and you can optionally add a `PROMPT.md` file. To help others understand your agent's capabilities, consider including an `EXAMPLES.md` file with sample prompts and use cases.
98+
> Want to share your own agent with the community? Submit a PR to the [Tiny Agents](https://huggingface.co/datasets/tiny-agents/tiny-agents/discussions) repository on the Hub. Your submission must include an `agent.json` file, and you can optionally add a `PROMPT.md` file. To help others understand your agent's capabilities, consider including an `EXAMPLES.md` file with sample prompts and use cases.
9999
100100
## Advanced: Programmatic Usage
101101

packages/tiny-agents/src/cli.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const FILENAME_CONFIG = "agent.json";
4141
const FILENAME_PROMPT = "PROMPT.md";
4242

4343
const TINY_AGENTS_HUB_REPO: RepoDesignation = {
44-
name: "huggingface/tiny-agents",
44+
name: "tiny-agents/tiny-agents",
4545
type: "dataset",
4646
};
4747

@@ -101,7 +101,7 @@ async function tryLoadFromHub(agentId: string): Promise<TinyAgentConfig | undefi
101101
prompt = await readFile(promptPath, { encoding: "utf8" });
102102
} catch {
103103
debug(
104-
`PROMPT.md not found in https://huggingface.co/datasets/huggingface/tiny-agents/tree/main/${agentId}, continuing without prompt template`
104+
`PROMPT.md not found in https://huggingface.co/datasets/tiny-agents/tiny-agents/tree/main/${agentId}, continuing without prompt template`
105105
);
106106
}
107107

@@ -131,7 +131,7 @@ async function loadConfigFrom(loadFrom: string): Promise<TinyAgentConfig> {
131131
}
132132

133133
error(
134-
`Config file not found in tiny-agents! Please make sure it exists locally or in https://huggingface.co/datasets/huggingface/tiny-agents.`
134+
`Config file not found in tiny-agents! Please make sure it exists locally or in https://huggingface.co/datasets/tiny-agents/tiny-agents.`
135135
);
136136
process.exit(1);
137137
}

0 commit comments

Comments
 (0)