📚
Docs - Float16
homeapp
  • 🚀GETTING STARTED
    • Introduction
    • Account
      • Dashboard
      • Profile
      • Payment
      • Workspace
      • Service Quota
    • LLM as a service
      • Quick Start
        • Set the credentials
      • Supported Model
      • Limitation
      • API Reference
    • One Click Deploy
      • Quick Start
        • Instance Detail
        • Re-generate API Key
        • Terminate Instance
      • Features
        • OpenAI Compatible
        • Long context and Auto scheduler
        • Quantization
        • Context caching
      • Limitation
      • Validated model
      • Endpoint Specification
    • Serverless GPU
      • Quick Start
        • Mode
        • Task Status
        • App Features
          • Project Detail
      • Tutorials
        • Hello World
        • Install new library
        • Prepare model weight
        • S3 Copy output from remote
        • R2 Copy output from remote
        • Direct upload and download
        • Server mode
        • LLM Dynamic Batching
        • Train and Inference MNIST
        • Etc.
      • CLI References
      • ❓FAQ
    • Playground
      • FloatChat
      • FloatPrompt
      • Quantize by Float16
  • 📚Use Case
    • Q&A Bot (RAG)
    • Text-to-SQL
    • OpenAI with Rate Limit
    • OpenAI with Guardrail
    • Multiple Agents
    • Q&A Chatbots (RAG + Agents)
  • ✳️Journey
    • ✨The Beginner's LLM Development Journey
    • 📖Glossary
      • [English Version] LLM Glossary
      • [ภาษาไทย] LLM Glossary
    • 🧠How to install node
  • Prompting
    • 📚Variable
    • ⛓️Condition
    • 🔨Demonstration
    • ⌛Loop
    • 📙Formatting
    • 🐣Chat
    • 🔎Technical term (Retrieve)
  • Privacy Policy
  • Terms & Conditions
Powered by GitBook
On this page
  • Intro
  • How it work ?
  • Prompt example
  1. Prompting

Technical term (Retrieve)

Intro

An LLM can follow instructions via prompts. However, an LLM is more sensitive to "technical terms" rather than "general terms". The best way to get precise output is to use technical terms instead of general terms.

How it work ?

We can change "general terms" into "technical terms" without adjusting other instructions.

``` python
def calculate_square_area (x, y) : 
  return x * y
```
Write unit test.
Return only code.
---------------------------------------------------------
``` python
def calculate_square_area (x, y) : 
  return x * y
```
Write boundary test.
Return only code.

A software developer could consider this ability similar to the search functionality in other programming languages.

Prompt example

PreviousChatNextPrivacy Policy

Last updated 9 months ago

🔎
LogoBasic Prompt Technical Term #1FloatPrompt
General term to generate unit test
LogoBasic Prompt Technical Term #2FloatPrompt
Specific term to generate unit test
LogoBasic Prompt Technical Term #3FloatPrompt
Specific term to generate unit test