Chrome에서 실험용 AI API를 사용하려면 다음 단계를 따르세요.
다음 항목은 아직 지원되지 않습니다.
실패할 경우 다음을 시도해 보세요.
참고: 때로는 모델 설치에 시간이 걸릴 수 있습니다. 인내심을 갖고 필요한 경우 과정을 반복하세요.
모델을 활성화하려면 Chrome에서 다음 플래그를 활성화하세요.
일반적인 작업에 사용되는 가장 간단한 모델입니다. 프롬프트를 보내면 응답 반환을 시도합니다. 다음은 기본적인 예입니다.
const session = await ai.assistant.create(); const result = await session.prompt("Explain what JavaScript is");
systemPrompt를 사용하여 추가 지침을 전달할 수도 있습니다.
const session = await ai.assistant.create({ systemPrompt: "You are an expert in JavaScript, providing helpful code best practices." });
이 API는 텍스트의 언어를 감지하여 100개 이상의 언어와 변형을 지원합니다.
예:
const detector = await translation.createDetector(); const results = await detector.detect("Bonjour le monde"); for (const result of results) { console.log(result.detectedLanguage, result.confidence); }
작성자 API: 새 콘텐츠를 만듭니다.
예: 은행에 신청서 초안 작성
const writer = await ai.writer.create(); const result = await writer.write("Write a email asking for feedback");
Rewriter API: 기존 텍스트를 개선하거나 재구성합니다.
const rewriter = await ai.rewriter.create(); const result = await rewriter.rewrite("La inteligencia artificial es...", { context: "Use simple words." });
이러한 API는 모두 실험 단계에 있으므로 오류나 불일치가 발견되는 것이 정상입니다. 모든 피드백을 환영합니다. 변경 사항에 대해 알고 싶으시면 이 양식을 작성하여 문서에 액세스하고 업데이트를 받아보세요.
위 내용은 Chrome에서 AI 실험 API를 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!