deepgram-go-text-intelligence

작성자: deepgram

Use when writing or reviewing Go code in this repo that sends text to Deepgram Read via the analyze client. Route speech/audio inputs to…

npx skills add https://github.com/deepgram/deepgram-go-sdk --skill deepgram-go-text-intelligence

Using Deepgram Text Intelligence from the Go SDK

When to use this product

Use this skill for plain-text analysis handled by pkg/client/analyze.

  • summarization
  • sentiment on text input
  • URL, file, or stream based Read requests

Use a different skill when:

  • your source material is audio and should go through /v1/listen (deepgram-go-audio-intelligence)
  • you need transcription first (deepgram-go-speech-to-text)
  • you need admin endpoints (deepgram-go-management-api)

Authentication

Set DEEPGRAM_API_KEY before creating the analyze client.

export DEEPGRAM_API_KEY="your_api_key"

Quick start

package main

import (
	"context"
	"fmt"
	"log"
	"strings"

	api "github.com/deepgram/deepgram-go-sdk/v3/pkg/api/analyze/v1"
	analyze "github.com/deepgram/deepgram-go-sdk/v3/pkg/client/analyze"
	interfaces "github.com/deepgram/deepgram-go-sdk/v3/pkg/client/interfaces"
)

func main() {
	if err := run(); err != nil {
		log.Fatal(err)
	}
}

func run() error {
	ctx := context.Background()

	client := analyze.NewWithDefaults()
	dg := api.New(client)

	resp, err := dg.FromStream(
		ctx,
		strings.NewReader("Deepgram provides APIs for speech, voice, and media intelligence."),
		&interfaces.AnalyzeOptions{Summarize: true, Sentiment: true},
	)
	if err != nil {
		return err
	}

	if resp.Results.Summary != nil {
		fmt.Println(resp.Results.Summary.Text)
	}
	return nil
}

Key parameters

  • interfaces.AnalyzeOptions
    • common fields include Summarize, Sentiment, and other Read features exposed by the analyze client
  • request helpers
    • on pkg/api/analyze/v1: api.New(client).FromFile, FromStream, FromURL
  • constructors
    • analyze.NewWithDefaults()
    • analyze.New(apiKey, options)

API reference (layered)

  1. In-repo reference
    • README.md
    • docs.go
    • pkg/client/analyze/client.go
    • pkg/client/analyze/v1/client.go
    • pkg/client/interfaces/v1/types-analyze.go
    • pkg/api/version/analyze-version.go
  2. OpenAPI
    • https://developers.deepgram.com/openapi.yaml
  3. AsyncAPI
    • https://developers.deepgram.com/asyncapi.yaml
  4. Context7
    • /llmstxt/developers_deepgram_llms_txt
  5. Product docs
    • https://developers.deepgram.com/reference/text-intelligence/analyze-text
    • https://developers.deepgram.com/docs/text-intelligence
    • https://developers.deepgram.com/docs/text-sentiment-analysis

Gotchas

  1. The Go package is named analyze, but the product route maps to Read / text intelligence.
  2. Do not send raw audio here; audio intelligence features live on the listen REST path.
  3. FromFile, FromStream, and FromURL live on the pkg/api/analyze/v1 wrapper, not on the base client.
  4. Reuse context.Context and stream readers for large inputs instead of materializing everything into one string.

Example files in this repo

  • examples/analyze/summary/main.go
  • examples/analyze/sentiment/main.go

Central product skills

For cross-language Deepgram product knowledge — the consolidated API reference, documentation finder, focused runnable recipes, third-party integration examples, and MCP setup — install the central skills:

npx skills add deepgram/skills

This SDK ships language-idiomatic code skills; deepgram/skills ships cross-language product knowledge (see api, docs, recipes, examples, starters, setup-mcp).

deepgram의 다른 스킬

deepclaw-voice
deepgram
Deepgram Voice Agent API를 사용하여 OpenClaw에 전화 통화를 설정합니다.
official
deepgram-js-audio-intelligence
deepgram
Use when writing or reviewing JavaScript/TypeScript in this repo that calls Deepgram audio analytics overlays on `/v1/listen` - summarize, topics, intents,…
official
deepgram-dotnet-audio-intelligence
deepgram
Use when writing or reviewing C# code in this repo that enables Deepgram intelligence overlays on Speech-to-Text requests. Covers `PreRecordedSchema` analytics…
official
deepgram-dotnet-management-api
deepgram
Use when writing or reviewing C# code in this repo that calls Deepgram Management APIs for projects, models, keys, members, invitations, usage, balances, and…
official
deepgram-dotnet-text-intelligence
deepgram
Use when writing or reviewing C# code in this repo that calls Deepgram Text Intelligence / Read (`/read`) for sentiment, summarization, topic detection, and…
official
deepgram-dotnet-text-to-speech
deepgram
Use when writing or reviewing C# code in this repo that calls Deepgram Text-to-Speech. Covers `ClientFactory.CreateSpeakRESTClient()` with `ToStream` /…
official
deepgram-dotnet-voice-agent
deepgram
Use when writing or reviewing C# code in this repo that builds an interactive Deepgram Voice Agent over WebSocket. Covers…
official
deepgram-go-audio-intelligence
deepgram
Use when writing or reviewing Go code in this repo that applies summaries, topics, intents, sentiment, language detection, diarization, redaction, or entity…
official