-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0152f2a
commit b25d437
Showing
3 changed files
with
172 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
--- | ||
modules: | ||
- .llms | ||
--- | ||
generic object: IntakeQuestionList | ||
code: | | ||
x.there_are_any = x.need_more_questions() | ||
--- | ||
generic object: IntakeQuestionList | ||
code: | | ||
x.there_is_another = x.need_more_questions() | ||
--- | ||
generic object: IntakeQuestionList | ||
code: | | ||
x[i].question = x.next_question | ||
--- | ||
generic object: IntakeQuestionList | ||
question: | | ||
${ x[i].question } | ||
fields: | ||
- ${ x[i].question }: x[i].response | ||
datatype: area | ||
right: | | ||
% if get_config("debug"): | ||
${ x.problem_type } | ||
% endif | ||
--- | ||
generic object: IntakeQuestionList | ||
code: | | ||
x.initial_question = "What is the problem you are trying to solve?" | ||
--- | ||
generic object: IntakeQuestionList | ||
question: | | ||
What is the problem you are trying to solve? | ||
subquestion: | | ||
Explain what you are looking help with. Do not include any personal information | ||
such as your name, address, or phone number. | ||
fields: | ||
- I need help with: x.initial_problem_description | ||
datatype: area | ||
--- | ||
generic object: IntakeQuestionList | ||
continue button field: x.intake_results | ||
question: | | ||
% if x.qualifies: | ||
You may qualify for help | ||
% elif x.qualifies is not None: | ||
You probably do not qualify for help | ||
% else: | ||
We need more information to determine if you qualify for help | ||
% endif | ||
subquestion: | | ||
${ x.next_question } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
--- | ||
include: | ||
- intake.yml # docassemble.ALToolbox:data/questions/intake.yml | ||
--- | ||
objects: | ||
- intake_screener: | | ||
IntakeQuestionList.using( | ||
criteria={ | ||
"housing": str(intake_criteria), | ||
}, | ||
problem_type = "housing", # Hardcoding for this simple demo | ||
model="gpt-4-turbo" | ||
) | ||
--- | ||
mandatory: True | ||
code: | | ||
intake_screener.gather() | ||
intake_screener.intake_results | ||
--- | ||
# Example intake criteria | ||
template: intake_criteria | ||
content: | | ||
PROTOCOLS FOR HOUSING INTAKES AUGUST 2023 | ||
Housing is focusing on eviction lawsuits. Thus, we ask workers to do intakes on court | ||
matters only. (There are a few exceptions listed below.) | ||
Court Summons The court matters we will mostly take are cases with summons dates, | ||
(first court date, non-trial date). This includes subsidized housing and private | ||
landlord/tenant as usual. | ||
Other Court Matters | ||
We will also take default judgments, consent judgments, cases | ||
already set for trial, and sheriff evictions with the following limitations. | ||
Default Judgment: If caller contacts us within Ten (10) calendar days from the | ||
date of the default judgment, then please do the intake. | ||
Cases Already set for Trial: If the caller contacts LSEM at least Ten (10) calendar | ||
days from the date of the trial, then it is OK to do the intake. | ||
Sheriff Evictions Posted and Consent Judgments: Call and/or email me before | ||
doing the intake. We will take these, but are limited based on the specific facts of | ||
the case, which I have to look at before agreeing to open a case. | ||
Section 8 | ||
Please do an intake for a caller facing a proposed termination of Section 8, i.e. if the | ||
caller has received a proposed termination of Section 8 notice from one of the following: | ||
the St. Louis Housing Authority (SLHA); the Housing Authority of St. Louis County | ||
(HASLC); JFCAC in Jefferson County; or NECAC in St. Charles County. | ||
Domestic Violence | ||
If domestic violence is a present, please call or email me. We may be able to take the | ||
case even if there is no court date. | ||
Other Housing Matters | ||
For other Housing matters, please refer the caller to the Housing section of the LSEM | ||
website and/or to the new website:“motenanthelp.org” |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters