Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancing Accuracy of LLM Integration #519

Merged
merged 6 commits into from
Jan 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
111 changes: 77 additions & 34 deletions src/analyzer/analyzers/llm_analyzers/ollama.cr
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,37 @@ module Analyzer::AI

# Filter files that are likely to contain endpoints
filter_prompt = <<-PROMPT
!! Respond only in JSON format. Do not include explanations, comments, or any additional text. !!
---
Analyze the following list of file paths and identify which files are likely to represent endpoints, including API endpoints, web pages, or static resources.
Exclude directories from the analysis and focus only on individual files.
Return the result as a JSON array of file paths that should be analyzed further.

File paths:
#{all_paths.join("\n")}
Guidelines:
- Focus only on individual files.
- Do not include directories.
- Do not include explanations, comments or additional text.

Input Files:
#{all_paths.map { |path| "- #{File.expand_path(path)}" }.join("\n")}
PROMPT

filter_response = ollama.request(filter_prompt)
format = <<-FORMAT
{
"type": "object",
"properties": {
"files": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": ["files"]
}
FORMAT

filter_response = ollama.request(filter_prompt, format)
filtered_paths = JSON.parse(filter_response.to_s)
logger.debug_sub filter_response

filtered_paths.as_a.each do |fpath|
filtered_paths["files"].as_a.each do |fpath|
target_paths << fpath.as_s
end
else
Expand All @@ -61,39 +77,66 @@ module Analyzer::AI

begin
prompt = <<-PROMPT
!! Respond only in JSON format. Do not include explanations, comments, or any additional text. !!
---
Analyze the given source code and extract the endpoint and parameter details. Strictly follow this JSON structure:

[
{
"url": "string / e.g., /api/v1/users",
"method": "string / e.g., GET, POST, PUT, DELETE",
"params": [
{
"name": "string / e.g., id",
"param_type": "string / one of: query, json, form, header, cookie, path",
"value": "string / optional, default empty"
}
]
}
]
Analyze the provided source code to extract details about the endpoints and their parameters.

- Ensure `param_type` uses only these values: `query`, `json`, `form`, `header`, `cookie`, `path`.
- If no endpoints are found in the code, respond with an empty array `[]`.
- Do not deviate from the specified JSON structure.
Guidelines:
- The "method" field should strictly use one of these values: "GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS", "HEAD".
- The "param_type" must strictly use one of these values: "query", "json", "form", "header", "cookie" and "path".
- Do not include explanations, comments or additional text.

Input Code:

#{content}
PROMPT

response = ollama.request(prompt)
format = <<-FORMAT
{
"type": "object",
"properties": {
"endpoints": {
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"method": {
"type": "string"
},
"params": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"param_type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": ["name", "param_type", "value"]
}
}
},
"required": ["url", "method", "params"]
}
}
},
"required": ["endpoints"]
}
FORMAT

response = ollama.request(prompt, format)
logger.debug "Ollama response (#{relative_path}):"
logger.debug_sub response

response_json = JSON.parse(response.to_s)
response_json.as_a.each do |endpoint|
next unless response_json["endpoints"].as_a.size > 0
response_json["endpoints"].as_a.each do |endpoint|
url = endpoint["url"].as_s
method = endpoint["method"].as_s
params = endpoint["params"].as_a.map do |param|
Expand All @@ -107,8 +150,8 @@ module Analyzer::AI
@result << Endpoint.new(url, method, params, details)
end
rescue ex : Exception
puts "Error processing file: #{path}"
puts "Error: #{ex.message}"
logger.debug "Error processing file: #{path}"
logger.debug "Error: #{ex.message}"
end
end
end
Expand All @@ -122,7 +165,7 @@ module Analyzer::AI
end

def ignore_extensions
[".css", ".xml", ".json", ".yml", ".yaml", ".md", ".jpg", ".jpeg", ".png", ".gif", ".svg", ".ico", ".eot", ".ttf", ".woff", ".woff2", ".otf", ".mp3", ".mp4", ".avi", ".mov", ".webm", ".zip", ".tar", ".gz", ".7z", ".rar", ".pdf", ".doc", ".docx", ".xls", ".xlsx", ".ppt", ".pptx", ".txt", ".csv", ".log", ".sql", ".bak", ".swp"]
[".css", ".xml", ".json", ".yml", ".yaml", ".md", ".jpg", ".jpeg", ".png", ".gif", ".svg", ".ico", ".eot", ".ttf", ".woff", ".woff2", ".otf", ".mp3", ".mp4", ".avi", ".mov", ".webm", ".zip", ".tar", ".gz", ".7z", ".rar", ".pdf", ".doc", ".docx", ".xls", ".xlsx", ".ppt", ".pptx", ".txt", ".csv", ".log", ".sql", ".bak", ".swp", ".jar"]
end
end
end
6 changes: 5 additions & 1 deletion src/llm/ollama/ollama.cr
hahwul marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
require "json"

module LLM
class Ollama
def initialize(url : String, model : String)
Expand All @@ -6,11 +8,13 @@ module LLM
@model = model
end

def request(prompt : String)
def request(prompt : String, format : String = "json")
body = {
:model => @model,
:prompt => prompt,
:stream => false,
:temperature => 0.3,
:format => format == "json" ? "json" : JSON.parse(format)
}

response = Crest.post(@api, body, json: true)
Expand Down
Loading