top of page

PLATFORM ARCHITECTURE

A blueprint for transforming unstructured conversation data into actionable intelligence.

f0c1acc3-1c56-4b95-a204-05d525312679.png
a279d29b-f16c-4a1c-b8c0-a9f1e37d526a.png
968eb3f5-aee7-4b61-b623-87c845300067.png
389765c1-e9bf-4441-8c71-902856ac0870.png
3ac3ace2-8eb8-43d9-9487-a2b90b86360c.png

// Request

import fieldforce

from fieldforce import Client, Analysis

 

# Initialize the client

client = Client(api_key="ff_live_...")

 

# Upload conversation data

result = client.analyze(

source="call_recording.mp3",

language="auto", # Auto-detect

options={

"sentiment": True,

"entities": True,

"topics": True,

"competitors": True

}

)

​

# Get structured insights

print(result.summary)

# → "Customer expressed pricing concerns..."

​

print(result.sentiment_score)

# → 0.32 (negative)

​

print(result.detected_competitors)

# → ["Competitor A", "Competitor B"]

// Response

{ "id": "conv_8x7k2m", "status": "completed", "language": "en-US", "duration_seconds": 342, "sentiment": { "overall": -0.32, "segments": [ { "start": 0, "end": 45, "score": 0.12 },{ "start": 45, "end": 180, "score": -0.54 }, { "start": 180, "end": 342, "score": -0.21 } ] }, "entities": { "competitors": [ "Competitor A", "Competitor B" ], "products": [ "Premium Plan", "Enterprise Suite" ], "pain_points": [ "pricing", "delivery_time" ] }, "topics": [ { "name": "Pricing", "confidence": 0.94 },{ "name": "Product Quality", "confidence": 0.78 },{ "name": "Support", "confidence": 0.45 } ], "action_items": [ "Follow up on pricing concerns", "Provide competitor comparison" ] }

HOW IT WORKS

235d584d-ea9d-47f8-8629-f48f3e646e5d.png
a5399770-0660-4c3c-8d2a-a63f8f7652cb.png
94554bf5-4919-45d6-ac6b-415954897153.png
5506d337-5648-46c2-8872-77986ae163d3.png
DACHIDO PNG WHITE  LOGO.png

Field Force by Dachido

d115b457-8e80-49cc-ac7c-7aff51bc499f.png

© 2026 Field Force by Dachido. All rights reserved.

bottom of page