Spaces:
Sleeping
Sleeping
Lucas ARRIESSE
commited on
Commit
·
620e712
1
Parent(s):
4fd597d
reduce fto search size
Browse files- prompts/private/fto_assess.txt +1 -6
- prompts/private/fto_topics.txt +1 -1
- static/js/gen.js +2 -0
prompts/private/fto_assess.txt
CHANGED
|
@@ -4,14 +4,9 @@
|
|
| 4 |
whether any of the inventions found in the report potentially infringe partially or totally the presented solution, and how they infringe.
|
| 5 |
Perform a full-blown analysis.
|
| 6 |
Finally end your analysis by stating whether the idea is a "NO-GO" (completely blocked by infringing inventions), "CONDITIONAL-GO" (partially for the most part of the invention), "IMMEDIATE-GO" (little to no infringement) and provide a list of actionnable insights.
|
| 7 |
-
The actionnable insights should help steer the idea in a direction that may bypass some potential
|
| 8 |
</task>
|
| 9 |
|
| 10 |
-
<business>
|
| 11 |
-
Here's the business line
|
| 12 |
-
{{business}}
|
| 13 |
-
</business>
|
| 14 |
-
|
| 15 |
<idea>
|
| 16 |
**The idea is as follows:**
|
| 17 |
|
|
|
|
| 4 |
whether any of the inventions found in the report potentially infringe partially or totally the presented solution, and how they infringe.
|
| 5 |
Perform a full-blown analysis.
|
| 6 |
Finally end your analysis by stating whether the idea is a "NO-GO" (completely blocked by infringing inventions), "CONDITIONAL-GO" (partially for the most part of the invention), "IMMEDIATE-GO" (little to no infringement) and provide a list of actionnable insights.
|
| 7 |
+
The actionnable insights should help steer the idea in a direction that may bypass some potential infringements.
|
| 8 |
</task>
|
| 9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
<idea>
|
| 11 |
**The idea is as follows:**
|
| 12 |
|
prompts/private/fto_topics.txt
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
<task>
|
| 3 |
You are tasked with giving a list of topics to investigate for freedom-to-operate from a given idea.
|
| 4 |
You will be given an idea and you need to list all the topics or concepts that should be explored in a FTO analysis to make sure the idea is exploitable.
|
| 5 |
-
Please give at most the
|
| 6 |
</task>
|
| 7 |
|
| 8 |
<idea>
|
|
|
|
| 2 |
<task>
|
| 3 |
You are tasked with giving a list of topics to investigate for freedom-to-operate from a given idea.
|
| 4 |
You will be given an idea and you need to list all the topics or concepts that should be explored in a FTO analysis to make sure the idea is exploitable.
|
| 5 |
+
Please give at most the 4 most important ideas or concepts to explore.
|
| 6 |
</task>
|
| 7 |
|
| 8 |
<idea>
|
static/js/gen.js
CHANGED
|
@@ -283,6 +283,8 @@ async function assessFTOReport(providerUrl, modelName, apiKey, solution, fto_rep
|
|
| 283 |
solution_description: solution.solution_description,
|
| 284 |
});
|
| 285 |
|
|
|
|
|
|
|
| 286 |
const assessment_full = await generateCompletion(providerUrl, modelName, apiKey, [
|
| 287 |
{ role: "user", content: assessment_template }
|
| 288 |
]);
|
|
|
|
| 283 |
solution_description: solution.solution_description,
|
| 284 |
});
|
| 285 |
|
| 286 |
+
console.log("FTO Length: " + assessment_template.length);
|
| 287 |
+
|
| 288 |
const assessment_full = await generateCompletion(providerUrl, modelName, apiKey, [
|
| 289 |
{ role: "user", content: assessment_template }
|
| 290 |
]);
|