mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-21 09:44:21 +01:00
process
This commit is contained in:
@@ -2,12 +2,28 @@ import { App } from "./app";
|
||||
import process from "node:process";
|
||||
import { RPC } from "./server/server";
|
||||
import { Session } from "./session/session";
|
||||
import { Identifier } from "./id/id";
|
||||
|
||||
const app = await App.create({
|
||||
directory: process.cwd(),
|
||||
});
|
||||
|
||||
App.provide(app, async () => {
|
||||
const session = await Session.create();
|
||||
const sessionID = await Session.list()
|
||||
[Symbol.asyncIterator]()
|
||||
.next()
|
||||
.then((v) => v.value ?? Session.create().then((s) => s.id));
|
||||
|
||||
await Session.chat(sessionID, {
|
||||
role: "user",
|
||||
id: Identifier.create("message"),
|
||||
parts: [
|
||||
{
|
||||
type: "text",
|
||||
text: "Hey how are you? try to use tools",
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
const rpc = RPC.listen();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user