1234567891011121314151617181920 |
- using System.Collections.Generic;
- using System.Threading;
- using System.Threading.Tasks;
- using UnityEngine;
- namespace LLM.Editor.Client
- {
-
-
-
-
-
- public interface ILlmApiClient
- {
- public Task<bool> Initialize();
- public Task SendPrompt(string prompt, List<Object> stagedContext, CancellationToken cancellationToken = default);
- public Task SendFollowUp(string detailedContext, CancellationToken cancellationToken = default);
- public string GetAuthToken();
- }
- }
|